home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / scsiDiskBoot / RCS / stubs.c,v < prev    next >
Encoding:
Text File  |  1989-06-10  |  1.6 KB  |  122 lines

  1. head     1.4;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    mendel:1.4; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.4
  10. date     89.01.06.08.14.47;  author brent;  state Exp;
  11. branches ;
  12. next     1.3;
  13.  
  14. 1.3
  15. date     87.05.08.17.48.07;  author brent;  state Exp;
  16. branches ;
  17. next     1.2;
  18.  
  19. 1.2
  20. date     86.07.21.09.37.33;  author brent;  state Exp;
  21. branches ;
  22. next     1.1;
  23.  
  24. 1.1
  25. date     86.07.18.09.34.15;  author brent;  state Exp;
  26. branches ;
  27. next     ;
  28.  
  29.  
  30. desc
  31. @Stubs for the boot program.
  32. @
  33.  
  34.  
  35. 1.4
  36. log
  37. @New include files and constants due to source reorganization
  38. @
  39. text
  40. @#include "sprite.h"
  41. #include "machMon.h"
  42.  
  43. Sys_Printf(format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10)
  44.     char *format;
  45.     Address arg1;
  46.     Address arg2;
  47.     Address arg3;
  48.     Address arg4;
  49.     Address arg5;
  50.     Address arg6;
  51.     Address arg7;
  52.     Address arg8;
  53.     Address arg9;
  54.     Address arg10;
  55. {
  56.     Mach_MonPrintf(format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9,
  57.                arg10);
  58. }
  59.  
  60. Sys_Panic(type, string)
  61.     int type;
  62.     char *string;
  63. {
  64.     Mach_MonPrintf("Panic: %s\n", string);
  65.     Mach_MonTrap(romVectorPtr->abortEntry);
  66. }
  67. @
  68.  
  69.  
  70. 1.3
  71. log
  72. @Had to fix Mon_Abort, no longer a macro
  73. @
  74. text
  75. @d2 1
  76. a2 1
  77. #include "sunMon.h"
  78. d17 1
  79. a17 1
  80.     Mon_Printf(format, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9,
  81. d25 2
  82. a26 2
  83.     Mon_Printf("Panic: %s\n", string);
  84.     Mon_Trap(romVectorPtr->abortEntry);
  85. @
  86.  
  87.  
  88. 1.2
  89. log
  90. @Only has Sys_Printf and Sys_Panic now.
  91. @
  92. text
  93. @d26 1
  94. a26 1
  95.     Mon_Abort();
  96. @
  97.  
  98.  
  99. 1.1
  100. log
  101. @Initial revision
  102. @
  103. text
  104. @a3 5
  105. FsFileBlockIO()
  106. {
  107.     return;
  108. }
  109.  
  110. a26 10
  111. }
  112.  
  113. Fs_AttachDisk()
  114. {
  115.     return;
  116. }
  117.  
  118. Fs_BlocksToSectors()
  119. {
  120.     return;
  121. @
  122.